home *** CD-ROM | disk | FTP | other *** search
- #ifndef POINTLISTP_H
- #define POINTLISTP_H
-
- #include "pointlist.h"
-
- #define POINTLIST_MAXNAME 128
- #define POINTLIST_MAXMETH 4
- #define POINTLIST_METHNAMES "PointList_get", "PointList_fillin", \
- "PointList_set", "PointList_length"
-
- typedef struct {
- char name[POINTLIST_MAXNAME];
- GeomExtFunc *func;
- } SpecFunc;
-
- void pointlist_initspec(SpecFunc *specfunc, int n_func, GeomClass *class);
-
- #endif
-